| Conditions | 2 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import { PokemonBox } from './../../data/savefile-expanded/fragments/PokemonBox'; |
||
| 31 | |||
| 32 | public dayCareUsedClick() { |
||
| 33 | const daycare = this.fileService.fileDataExpanded.daycare.dayCare; |
||
| 34 | if (daycare == null) |
||
| 35 | this.fileService.fileDataExpanded.daycare.dayCare = new PokemonBox() |
||
| 36 | else |
||
| 37 | this.fileService.fileDataExpanded.daycare.dayCare = null; |
||
| 38 | } |
||
| 40 |